home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / ace.arc / PRECDNCE.HLP < prev    next >
Text File  |  1985-05-10  |  1KB  |  18 lines

  1.     Precedence of Operators:
  2.  
  3.     Operator                               Associativity
  4.      () [] -> .                          |  left to right     
  5.      ! ~ ++ -- - (type) * & sizeof       |  right to left
  6.      *  /  %                             |  left to right
  7.      +  -                                |  left to right 
  8.      << >>                               |  left to right
  9.      <  <=  >  >=                        |  left to right 
  10.      ==  !=                              |  left to right     
  11.      &                                   |  left to right 
  12.      ^                                   |  left to right 
  13.      |                                   |  left to right 
  14.      &&                                  |  left to right 
  15.      ||                                  |  left to right 
  16.      ?:                                  |  right to left
  17.      =  +=  -=  etc.                     |  right to left
  18.      ,  (K%R, Chapter 3)                 |  left to right